home *** CD-ROM | disk | FTP | other *** search
- /*
- ** StringNode Example-4
- **
- ** add(), search() AND insert() methods.
- **
- ** (C)Copyright 1995 Fabio Rotondo
- **
- ** e-mail: fosft@intercom.it
- */
-
- MODULE 'fabio/StringNode_oo' -> Our MAGIC MODULE
-
- PROC main()
- DEF n:PTR TO stringnode -> This is our OBJECT instance
-
- NEW n.stringnode() -> OBJECT initialization
-
- n.add('Zorro') -> Here we add some items...
- n.add('Batman')
- n.add('Superman')
- n.add('Gold Drake')
- n.add('Mandrake')
- n.add('MOMMY')
-
- shwall(n) -> Here we see them
-
- n.search('bat') -> The search is CASE insensitive AND match the first one ;)
- WriteF('Current:\s\n', n.name()) -> Here we are!
-
- n.insert('Spiderman') -> Wow! Another super-hero after Batman!
- shwall(n)
-
- END n -> Remember ALWAYS TO end an OBJECT
- ENDPROC
-
- PROC shwall(n:PTR TO stringnode)
- WriteF('------- \d ----------\n', n.numitems())
-
- IF n.first() -> Here we go TO the first node item
- REPEAT
- WriteF('Node:\s\n', n.name()) -> Node STRING...
- UNTIL n.succ() = FALSE -> LOOP UNTIL the end
- ELSE
- WriteF('No Nodes in LIST...\n')
- ENDIF
- ENDPROC
-
-